home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
TABLES
/
MTABLE
/
MLBTYPES.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1994-03-16
|
632b
|
41 lines
unit MLBTypes;
interface
uses
WinTypes;
type
TItemType = (ct_String, ct_BitMap);
pListItem = ^tListItem;
tListItem = record
ItemID: Integer;
FldName: PChar;
Caption: PChar;
ItemType: TItemType;
Part: Real;
Align: Word;
Wrap: Word;
Sort: Boolean;
end;
pItemsArray = ^tItemsArray;
tItemsArray = array [1..1] of tListItem;
pItemsList = ^tItemsList;
tItemsList = record
ColNumber : Word;
Items : pItemsArray;
end;
const
wm_SelChange = wm_User + 139;
wm_DblClicked = wm_User + 140;
MaxFieldWidth = 255;
implementation
end.